home *** CD-ROM | disk | FTP | other *** search
-
- // JavaScript wrapper for r3timer.h
- // Auto generated file, do not modify by hand
- // Copyright ⌐ 2004, Realsoft Graphics Oy
-
- var R3_TIMER_H = 1;
- include("oops/r3root.js")
-
-
- var R3CLID_TIMER = 82;
-
-
-
-
- // Description: Set time for timer.
- // p3: Integer, time in msecs
-
- R3TIMERM_TRIGGER = 82000;
-
- function mR3TIMERM_TRIGGER(p3) {
- DoA(this.r3obj, 82000, p3, R3TID_INTEGER, 0);
- }
-
- // Description: Cancel timer
-
- R3TIMERM_CANCEL = 82001;
-
- function mR3TIMERM_CANCEL() {
- DoA(this.r3obj, 82001, 0, R3TID_INTEGER, 0);
- }
-
-
-
- function r3Timer () {
- this.base = r3God;
- if(arguments.length) {
- this.base(R3CLID_TIMER, arguments);
- }
- // Methods
- this.TRIGGER=mR3TIMERM_TRIGGER;
- this.CANCEL=mR3TIMERM_CANCEL;
-
- }
-
- r3Timer.prototype=new r3Root;
- // r3timer.h_H